Back to Welcome Page
Project started in January 2024 with the goal of helping users migrate from Notion to Obsidian.
// Example code block
function convertNotionToObsidian(notionExport) {
return notionExport.map(page => ({
title: page.title,
content: convertToMarkdown(page.content)
}));
}